
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #212121;
  font-size: 16px;
  line-height: 1.6;
}

/* Header */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.5rem 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 140px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Navigation */
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

.main-nav a,
.main-nav button {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: #212121;
  text-decoration: none;
  background: none;
  border: none;
  font-size: 1.05rem;
  padding: 0.6rem 1.1rem;
  transition: all 0.2s ease;
}

.main-nav a:hover,
.main-nav button:hover {
  color: #0066cc;
}

/* Services button */
.services-toggle {
  background: #2563eb;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 9999px;
  padding: 0.6rem 1.3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.services-toggle:hover {
  background: #1e40af;
}


/* Improvements Patch */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  min-width: 320px;
  max-height: 60vh;
  overflow-y: auto;
  padding: 1rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

.dropdown-menu.open {
  display: flex;
}


.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}
.dropdown-menu::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 6px;
}

.dropdown-menu a {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  color: #212121;
  font-weight: 500;
  text-decoration: none;
  border-left: 4px solid transparent;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: #f5faff;
  color: #0066cc;
  border-left: 4px solid #0066cc;
}




/* Mobile Toggle Button Hidden on Desktop */
.mobile-toggle {
  display: none;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: #333;
    cursor: pointer;
    margin-left: 1rem;
  }
}

/* Call Now Button */
.call-now {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  background: #2ecc71;
  color: #fff;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
  gap: 0.4rem;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
}

.call-now:hover {
  background: #27ae60;
  transform: translateY(-2px);
}

/* HERO section */
.hero-emergency {
  padding: 6rem 1.5rem 4rem;
  margin-top: 0rem;
  background: linear-gradient(135deg, #fff5f5, #ffffff);
  text-align: center;
  border-bottom: 2px solid #b22234;
  box-shadow: 0 12px 24px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
}

.hero-emergency h1 {
  font-size: 2.5rem;
  color: #b22234;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-emergency p {
  font-size: 1.2rem;
  max-width: 750px;
  margin: 0.5rem auto;
  color: #333;
}

.cta-button {
  margin-top: 2rem;
  display: inline-block;
  background: #d32f2f;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.cta-button:hover {
  background: #a30e0e;
}

/* TESTIMONIALS */
.testimonials {
  background: #f9f9f9;
  padding: 4rem 1rem;
}

.testimonials h2 {
  text-align: center;
  font-size: 2rem;
  color: #0b355d;
  margin-bottom: 3rem;
}

.testimonials blockquote {
  background: #fff;
  border-left: 5px solid #2ecc71;
  padding: 1.5rem 1.5rem;
  margin: 2rem auto;
  max-width: 800px;
  font-style: italic;
  font-size: 1.1rem;
  color: #333;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.testimonials footer {
  margin-top: 1rem;
  text-align: right;
  font-size: 0.95rem;
  color: #555;
}


/* ✅ Floating Services Button */
.floating-services-toggle {
  position: fixed;
  bottom: 80px;
  left: 49px;
  z-index: 1001;
  text-align: left;
}

.floating-services-btn {
  background: #0066cc;
  color: #fff;
  border: none;
  padding: 0.60rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

.floating-services-btn:hover {
  background: #004999;
}

.floating-services-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  margin-top: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  max-height: 280px;
  overflow-y: auto;
  padding: 0.5rem 0;
  width: 260px;
}

.floating-services-menu.open {
  display: flex;
}

.floating-services-menu a {
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif !important; /* ✅ принудительно применяем */
  color: #222;
  text-decoration: none;
  border-left: 4px solid transparent;
  transition: all 0.2s ease;
}
.floating-services-menu a:hover {
  background: #f4f9ff;
  border-left: 4px solid #0066cc;
  color: #0066cc;
}

/* =============================
 📍 Floating Button (LEFT SIDE)
============================= */
.floating-call-widget {
  position: fixed;
  bottom: 20px;
  left: 20px; /* LEFT instead of right */
  z-index: 1001;
}
.floating-toggle {
  background: #b22234;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease;
}
.floating-toggle:hover {
  background: #800000;
}

/* =============================
   📦 Dialog Box Popup (LEFT)
============================= */
.floating-dialog {
  display: none;
  background: white;
  border: 2px solid #3c3b6e;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 280px;
  animation: fadeInUp 0.3s ease;
}
.floating-dialog h4 {
  margin-bottom: 0.5rem;
  color: #b22234;
  font-size: 1.1rem;
}
.floating-dialog p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.dialog-buttons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.dialog-btn {
  flex: 1;
  padding: 0.6rem;
  font-size: 0.9rem;
  text-align: center;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}
.dialog-btn.call {
  background: #3c3b6e;
  color: white;
}
.dialog-btn.message {
  background: #f39c12;
  color: white;
}
.dialog-full {
  display: block;
  width: 100%;
  padding: 0.8rem;
  background: #b22234;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.dialog-full:hover {
  background: #800000;
}

/* =============================
   📩 Modal Form (Full Screen)
============================= */
.form-modal {
  display: none;
  position: fixed;
  z-index: 1002;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

/* =============================
   💬 Form Content Box
============================= */
.form-content {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.3s ease;
  box-sizing: border-box;
}
.form-content h3 {
  margin-bottom: 1rem;
  color: #3c3b6e;
  font-size: 1.3rem;
  text-align: center;
}
.form-content label {
  display: block;
  margin: 0.8rem 0 0.3rem;
  font-weight: 600;
  color: #333;
}
.form-content input,
.form-content textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
}
.form-content button[type="submit"] {
  margin-top: 1rem;
  background: #3c3b6e;
  color: white;
  padding: 0.75rem;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.form-content button[type="submit"]:hover {
  background: #2a2956;
}

/* =============================
   ❌ Close Button
============================= */
.form-content .close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
}

/* =========================
 MARKETING NOTIFICATION
 (middle right, fixed)
========================= */
.marketing-notification {
  position: fixed;
  top: 57%;
  right: 1rem;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.95);
  border: 1px solid #ccc;
  border-left: 4px solid #0066cc;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  color: #333;
  display: none;
  z-index: 10000;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.marketing-notification.show {
  display: block;
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.marketing-notification.hide {
  opacity: 0;
  transform: translateY(-50%) translateX(10px); /* slide slightly right on hide */
}

/* =============================
   ✨ Animation
============================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* =========================
     FOOTER
  ========================= */
  footer {
    background: #fafafa;
    padding: 2rem 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    border-top: 1px solid #eee;
  }
  .payment-icons {
    margin-top: 0.5rem;
    color: #555;
    font-size: 1rem;
  }
  
  {
    font-family: 'Poppins', sans-serif;
    background: #ffffff;
    color: #212121;
    line-height: 1.6;
    margin: 0;
    padding: 0;
  }
  
  .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 1.5rem;
  }


/* ================================
   📱 FULL MOBILE + TABLET STYLES
================================ */
@media (max-width: 768px) {
  /* Header structure */
  .site-header {
    height: auto;
    padding: 0.75rem 1rem;
    padding-bottom: 2.2rem !important;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
  }

  .mobile-toggle {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 2rem;
    background: none;
    border: none;
    color: #212121;
    z-index: 2002;
    padding: 0.5rem;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    z-index: 2001;
    max-width: 160px;
  }

  .logo-icon {
    height: 100px;
    max-height: none;
    width: auto;
  }

  .call-now {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    margin: 0;
    background: #2ecc71;
    border-radius: 6px;
    color: #fff;
  }

  /* Main nav */
  .main-nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 0rem;
    width: 100%;
    height: 100vh;
    z-index: 1999;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a,
  .main-nav button {
    font-size: 1.1rem;
    padding: 1rem;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #eee;
    color: #212121;
  }

  body.nav-open {
    overflow: hidden;
  }

}

@media (max-width: 768px) {
  /* Кнопка SERVICES */
  .services-toggle {
    width: 100%;
    text-align: left;
    padding: 1rem;
    font-size: 1.1rem;
    border: none;
    background: none;
    color: #212121;
    cursor: pointer;
    display: block;
    position: relative;
    z-index: 1;
  }

  .services-toggle:hover {
    background: #f5f5f5;
  }

  /* Меню SERVICES */
  .services-menu {
    display: none;
    flex-direction: column;
    background: #ffffff;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    overflow: hidden; /* ⛔ убираем скролл */
    max-height: 0;
    transition: max-height 0.3s ease;
  }

  .services-menu.open {
    display: flex;
    max-height: 1000px; /* раскрытие */
  }

  .services-menu a {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid #eee;
    border-left: 4px solid transparent;
    color: #212121;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .services-menu a:hover {
    background: #f5faff;
    border-left: 4px solid #0066cc;
    color: #0066cc;
  }

  /* Запрещаем скролл всей навигации */
  .main-nav {
    overflow-y: hidden !important;
  }

  /* Hero Section */
  .hero {
    padding: 3rem 1rem;
    text-align: center;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero h2 {
    font-size: 1.3rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-button,
  .cta-glow .cta-button {
    width: 100%;
    font-size: 1rem;
    padding: 1rem;
  }

  /* Grid and Cards */
  .grid-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .status-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    font-size: 0.85rem;
  }

  .card h3 {
    font-size: 1rem;
  }

  /* Dialog buttons */
  .dialog-buttons {
    flex-direction: column;
  }

  .dialog-btn,
  .dialog-full {
    width: 100%;
    font-size: 0.95rem;
  }

  /* Form modal and content */
  .form-content {
    max-width: 95%;
    padding: 1.5rem;
  }

  .form-content h3 {
    font-size: 1.2rem;
  }

  .form-content input,
  .form-content textarea {
    font-size: 0.95rem;
  }

  /* Floating widget and dialog */
  .floating-toggle {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }

  .floating-dialog {
    width: 90vw;
    left: -10px;
  }

  .floating-fee-card {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .gift-btn {
  position: fixed; /* ← обязательно! */
  bottom: 120px;     /* ← теперь будет работать */
  right: 1rem;
  width: 48px;
  height: 48px;
  font-size: 1.4rem;
  z-index: 9999;
}

  /* Marketing notification */
  .marketing-notification {
    top: 50%;
    right: 0.5rem;
    transform: translateY(-50%);
    font-size: 0.8rem;
    max-width: 80%;
    padding: 0.75rem 1rem;
  }

  /* Fomo bar */
  .fomo-bar {
    position: relative;
    top: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    margin-top: -0.5rem !important;
  }

  .fomo-bar .marquee {
    display: inline-block;
    padding-left: 0;
    animation: marqueeMobile 18s linear infinite;
  }

  /* Scam Alert / Review / How It Works Titles */
  .service-cards h2,
  .how-it-works h2,
  .scam-alert h2,
  .review-highlight h2,
  .cta-glow h2,
  .faq h2 {
    font-size: 1.3rem;
  }

  /* Popup & modal content */
  .popup-content {
    max-width: 95%;
    padding: 1rem;
  }

  .spin-content {
    padding: 1rem;
  }

  .spin-input {
    font-size: 0.9rem;
  }

  .spin-submit {
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }

  .spinner {
    width: 120px;
    height: 120px;
    border-width: 6px;
  }
}

/* ===== Mobile Marquee Animation ===== */
@keyframes marqueeMobile {
  from { transform: translateX(100%); }
  to { transform: translateX(-100%); }
}}

@media (max-width: 768px) {
  .call-now {
    font-size: 1.4rem;
    padding: 0.6rem 0.8rem;
  }

  .call-now {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .call-now::before {
    content: "📞";
  }

  .call-now {
    color: white;
  }

  .call-now span {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .cta-button {
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }

  .status-grid {
    grid-template-columns: 1fr;
    font-size: 0.85rem;
    gap: 0.5rem;
  }

  .service-cards h2,
  .how-it-works h2,
  .scam-alert h2,
  .review-highlight h2,
  .cta-glow h2,
  .faq h2 {
    font-size: 1.3rem;
  }

  .card h3 {
    font-size: 1rem;
  }

  .form-content h3 {
    font-size: 1.1rem;
  }

  .popup-content {
    max-width: 95%;
    padding: 1rem;
  }

  .gift-btn {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    bottom: 5rem;
    right: 1rem;
  }

  .spin-submit {
    padding: 0.6rem 1rem;
    font-size: 1rem;
  }

  .floating-fee-card {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
  }

  .spinner {
    width: 120px;
    height: 120px;
    border-width: 6px;
  }
}

@keyframes marqueeMobile {
  from { transform: translateX(100%); }
  to   { transform: translateX(-100%); }
}


/* 🔔 Minimal Call Now Style */
.call-now {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: white;
  background: none;
  border: none;
  padding: 0.4rem 0.6rem;
  text-decoration: none;
}

.call-now:hover {
  text-decoration: underline;
}

/* 📱 On mobile: show only 📞 */
@media (max-width: 768px) {
  .call-now span {
    display: none;
  }
}

/* ✨ Add more space near logo for FOMO effect */
.site-header {
  padding-top: 4.7rem !important; /* Increase top space */
}


@media (max-width: 768px) {

  .header-inner {
    padding-top: 0;
    transform: none;
    align-items: center;
    gap: 0;
}
  .mobile-toggle {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: -10.5px; /* приподнимаем иконки */
  }
  
  .call-now {
    position: absolute;
    right: 40px;
    top: 0;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    max-width: calc(100vw - 3rem);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: -11px;
  }

  @media (max-width: 768px) {
  .logo {
    width: auto;
    max-width: none;
    height: auto;
    position: absolute;
    left: 45%;
    transform: translateX(-50%);
    top: -3.2rem;
    z-index: 2001;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .logo img,
  .logo-icon {
    height: 130px;
    max-height: 150px;
    width: 220px;
    transform: none;
    margin: 0 auto;
}

  .site-header {
    padding-top: 1rem !important;
    padding-bottom: 2.5rem !important;
  }

  
}


@media (max-width: 768px) {
  footer {
    padding-bottom: 7.5rem; /* отступ под кнопками */
  }
}

@media (max-width: 768px) {
  /* 🔵 SERVICES — прижимаем вниз ближе к красной */
  .floating-services-toggle {
    bottom: 68px !important; /* ← ключевая строчка */
    left: 20px;
    right: 20px;
    position: fixed;
    z-index: 1001;
  }

  .floating-services-btn {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.7rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    background: #0066cc;
    color: white;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    border: none;
  }



/* Mobile */
@media (max-width: 600px) {
  .hero-emergency h1 {
    font-size: 2rem;
  }

  .hero-emergency p {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 1.1rem;
    padding: 0.9rem 1.5rem;
  }

  .testimonials blockquote {
    font-size: 1rem;
  }

  .main-nav {
    flex-direction: column;
    gap: 0.5rem;
  }
}



/* 💥 GLOBAL OVERFLOW FIX */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

@media (max-width: 768px) {
  .dropdown-menu.services-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    background: #fff !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    transition: max-height 0.3s ease !important;
  }

  .dropdown-menu.services-menu.open {
    max-height: 1500px !important; /* раскрытие */
  }

  .dropdown-menu.services-menu a {
    padding: 1rem 1.25rem !important;
    font-size: 1rem !important;
    text-decoration: none !important;
    color: #212121 !important;
    border-bottom: 1px solid #eee !important;
    background: #fff !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .dropdown-menu.services-menu a:hover {
    background: #f5faff !important;
    color: #0066cc !important;
    border-left: 4px solid #0066cc !important;
  }

  /* Главный nav, прокручиваем только его */
  .main-nav {
    overflow-y: auto !important;
    max-height: calc(100vh - 6rem) !important; /* под логотип */
    padding-bottom: 6rem !important; /* под кнопки */
  }

  /* Блокируем прокрутку BODY */
  body.nav-open {
    overflow: hidden !important;
    height: 100vh !important;
    position: fixed !important;
    width: 100% !important;
  }

}

@media (max-width: 768px) {
  .cta-button {
    display: block;
    width: 90%;
    margin: 2rem auto;
    font-size: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  }
}

@media (max-width: 480px) {
  .cta-button {
    font-size: 1rem;
    padding: 0.9rem;
    margin: 1.5rem auto;
  }
}
